From 238ebeb4418cae6d128516d432a09e874da4ac3b Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 11 Mar 2007 23:53:10 +0000 Subject: [PATCH] (match): Use yellow background on light-bg terminals. --- lisp/replace.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/replace.el b/lisp/replace.el index 9e45e3479c3..a42f4ff4b57 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -849,10 +849,12 @@ Compatibility function for \\[next-error] invocations." (defface match '((((class color) (min-colors 88) (background light)) - :background "Tan") + :background "yellow") (((class color) (min-colors 88) (background dark)) :background "RoyalBlue3") - (((class color) (min-colors 8)) + (((class color) (min-colors 8) (background light)) + :background "yellow" :foreground "black") + (((class color) (min-colors 8) (background dark)) :background "blue" :foreground "white") (((type tty) (class mono)) :inverse-video t) -- 2.30.2